css section: No need for atomic refcounting
authorMatthias Clasen <mclasen@redhat.com>
Fri, 11 Sep 2015 23:04:07 +0000 (19:04 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 12 Sep 2015 16:50:38 +0000 (12:50 -0400)
We are all in one thread, anyway.

gtk/gtkcsssection.c

index 491a6d46c8befd7e7e3625e9bf338769e24dc2b6..5de9728dca9fffaf95040e034bfd4befeced08ff 100644 (file)
@@ -34,7 +34,7 @@
 
 struct _GtkCssSection
 {
-  volatile gint       ref_count;
+  gint                ref_count;
   GtkCssSectionType   section_type;
   GtkCssSection      *parent;
   GFile              *file;
@@ -115,7 +115,7 @@ gtk_css_section_ref (GtkCssSection *section)
 {
   gtk_internal_return_val_if_fail (section != NULL, NULL);
 
-  g_atomic_int_add (&section->ref_count, 1);
+  section->ref_count += 1;
 
   return section;
 }
@@ -134,7 +134,8 @@ gtk_css_section_unref (GtkCssSection *section)
 {
   gtk_internal_return_if_fail (section != NULL);
 
-  if (!g_atomic_int_dec_and_test (&section->ref_count))
+  section->ref_count -= 1;
+  if (section->ref_count > 0)
     return;
 
   if (section->parent)